home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-10-11 | 726 b | 29 lines | [TEXT/MMCC] |
- /*================================================================================
- AboutBox.c
-
- ©1994 Greg Anderson
- greggor@apple.com
-
- About box for Zawphing
- ================================================================================*/
- #include <string.h>
- #include <stdlib.h>
-
- #include "AboutBox.h"
- #include "DialogUtilities.h"
- #include "StringUtilities.h"
-
-
- //----------------------------------------------------------------------------------------
- // ShowAboutBox:
- //
- // Display the About box for Zawphing
- //----------------------------------------------------------------------------------------
- void ShowAboutBox()
- {
- //
- // We have a routine in DialogUtilities that does what we want...
- //
- SimpleBox(129);
- }
-